Get Vehicle Carrier
GET /tms/vehicles/carriers/{carrierId}
Description
This endpoint retrieves the details of a specific vehicle carrier based on the provided carrierId. It provides information about the vehicle associated with the carrier.
Parameters
- tenantId (
string, header, required): The ID of the tenant. - countryCode (
string, header, required): The country code where the vehicle is registered. - carrierId (
string, path, required): The ID of the vehicle carrier.
Responses
-
200 OK
-
Media type: Controls Accept header.
-
Example Value:
{
"status": true,
"statusCode": 0,
"message": "Vehicle found successfully",
"data": {},
"errors": [
{
"message": "string",
"descriptiveMessage": "string"
}
]
}
-
-
400 Bad Request
- Description: Invalid vehicle
carrierIdreference supplied.
- Description: Invalid vehicle
-
404 Not Found
- Description: Resource not found.
LANGUAGE
CURL REQUEST
curl --request GET \
--url /tms/vehicles/carriers/{carrierId} \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!